【例子介绍】田径运动会信息管理系统 软件工程 课程设计 SQL Server Visual Studio 2005 c#
田径运动会信息管理系统是我们期末的软件工程课程设计。 使用 SQL Server Visual Studio 2005 c# 编写。 跟另一个传重复了。呵呵~~
【相关图片】
【源码结构】
文件清单
├── 田径运动会信息管理系统
│ ├── SM
│ │ ├── SM
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DataBase
│ │ │ │ ├── SM.exe
│ │ │ │ ├── SM.exe.config
│ │ │ │ ├── SM.pdb
│ │ │ │ ├── SM.vshost.exe
│ │ │ │ └── SM.vshost.exe.config
│ │ │ ├── DataBase
│ │ │ │ ├── SM_log.ldf
│ │ │ │ └── SM.mdf
│ │ │ ├── DataGridViewPrinter.cs
│ │ │ ├── F_Login.cs
│ │ │ ├── F_Login.Designer.cs
│ │ │ ├── F_Login.resx
│ │ │ ├── F_Main.cs
│ │ │ ├── F_Main.Designer.cs
│ │ │ ├── F_Main.resx
│ │ │ ├── Image
│ │ │ │ ├── Login1.jpg
│ │ │ │ ├── Login2.gif
│ │ │ │ ├── Login2.jpg
│ │ │ │ ├── 搜索.jpg
│ │ │ │ ├── 田径运动主界面F_Main.jpg
│ │ │ │ ├── 登录F_Login.jpg
│ │ │ │ └── 登录界面F_Login.jpg
│ │ │ ├── Infomation
│ │ │ │ ├── F_Athlete.cs
│ │ │ │ ├── F_Athlete.Designer.cs
│ │ │ │ ├── F_AthleteInTeam.cs
│ │ │ │ ├── F_AthleteInTeam.Designer.cs
│ │ │ │ ├── F_AthleteInTeam.resx
│ │ │ │ ├── F_Athlete.resx
│ │ │ │ ├── F_ChangePassword.cs
│ │ │ │ ├── F_ChangePassword.Designer.cs
│ │ │ │ ├── F_ChangePassword.resx
│ │ │ │ ├── F_GameDetail.cs
│ │ │ │ ├── F_GameDetail.Designer.cs
│ │ │ │ ├── F_GameDetail.resx
│ │ │ │ ├── F_OwnInfo.cs
│ │ │ │ ├── F_OwnInfo.Designer.cs
│ │ │ │ ├── F_OwnInfo.resx
│ │ │ │ ├── F_Project.cs
│ │ │ │ ├── F_Project.Designer.cs
│ │ │ │ ├── F_Project.resx
│ │ │ │ ├── F_Referee.cs
│ │ │ │ ├── F_Referee.Designer.cs
│ │ │ │ ├── F_Referee.resx
│ │ │ │ ├── F_RefereeTask.cs
│ │ │ │ ├── F_RefereeTask.Designer.cs
│ │ │ │ ├── F_RefereeTask.resx
│ │ │ │ ├── F_Score.cs
│ │ │ │ ├── F_Score.Designer.cs
│ │ │ │ ├── F_Score.resx
│ │ │ │ ├── F_Team.cs
│ │ │ │ ├── F_Team.Designer.cs
│ │ │ │ ├── F_Team.resx
│ │ │ │ ├── F_UserInfo.cs
│ │ │ │ ├── F_UserInfo.Designer.cs
│ │ │ │ └── F_UserInfo.resx
│ │ │ ├── MyMenu
│ │ │ │ └── MyMenu.cs
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── SM.csproj.GenerateResource.Cache
│ │ │ │ │ ├── SM.csproj.ResolveComReference.cache
│ │ │ │ │ ├── SM.exe
│ │ │ │ │ ├── SM.F_Login.resources
│ │ │ │ │ ├── SM.F_Main.resources
│ │ │ │ │ ├── SM.Infomation.F_AthleteInTeam.resources
│ │ │ │ │ ├── SM.Infomation.F_Athlete.resources
│ │ │ │ │ ├── SM.Infomation.F_ChangePassword.resources
│ │ │ │ │ ├── SM.Infomation.F_GameDetail.resources
│ │ │ │ │ ├── SM.Infomation.F_OwnInfo.resources
│ │ │ │ │ ├── SM.Infomation.F_Project.resources
│ │ │ │ │ ├── SM.Infomation.F_Referee.resources
│ │ │ │ │ ├── SM.Infomation.F_RefereeTask.resources
│ │ │ │ │ ├── SM.Infomation.F_Score.resources
│ │ │ │ │ ├── SM.Infomation.F_Team.resources
│ │ │ │ │ ├── SM.Infomation.F_UserInfo.resources
│ │ │ │ │ ├── SM.pdb
│ │ │ │ │ ├── SM.Properties.Resources.resources
│ │ │ │ │ └── TempPE
│ │ │ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetAthleteInTeam.Designer.cs.dll
│ │ │ │ │ ├── SMDataSet.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetGameDetail.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetProject.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetReferee.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetScore.Designer.cs.dll
│ │ │ │ │ ├── SMDataSetTeam.Designer.cs.dll
│ │ │ │ │ └── SMDataSetUserInfo.Designer.cs.dll
│ │ │ │ └── SM.csproj.FileListAbsolute.txt
│ │ │ ├── PrintListView.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SM.csproj
│ │ │ ├── SMDataSetAthleteInTeam.Designer.cs
│ │ │ ├── SMDataSetAthleteInTeam.xsc
│ │ │ ├── SMDataSetAthleteInTeam.xsd
│ │ │ ├── SMDataSetAthleteInTeam.xss
│ │ │ ├── SMDataSet.Designer.cs
│ │ │ ├── SMDataSetGameDetail.Designer.cs
│ │ │ ├── SMDataSetGameDetail.xsc
│ │ │ ├── SMDataSetGameDetail.xsd
│ │ │ ├── SMDataSetGameDetail.xss
│ │ │ ├── SMDataSetProject.Designer.cs
│ │ │ ├── SMDataSetProject.xsc
│ │ │ ├── SMDataSetProject.xsd
│ │ │ ├── SMDataSetProject.xss
│ │ │ ├── SMDataSetReferee.Designer.cs
│ │ │ ├── SMDataSetReferee.xsc
│ │ │ ├── SMDataSetReferee.xsd
│ │ │ ├── SMDataSetReferee.xss
│ │ │ ├── SMDataSetScore.Designer.cs
│ │ │ ├── SMDataSetScore.xsc
│ │ │ ├── SMDataSetScore.xsd
│ │ │ ├── SMDataSetScore.xss
│ │ │ ├── SMDataSetTeam.Designer.cs
│ │ │ ├── SMDataSetTeam.xsc
│ │ │ ├── SMDataSetTeam.xsd
│ │ │ ├── SMDataSetTeam.xss
│ │ │ ├── SMDataSetUserInfo.Designer.cs
│ │ │ ├── SMDataSetUserInfo.xsc
│ │ │ ├── SMDataSetUserInfo.xsd
│ │ │ ├── SMDataSetUserInfo.xss
│ │ │ ├── SMDataSet.xsc
│ │ │ ├── SMDataSet.xsd
│ │ │ ├── SMDataSet.xss
│ │ │ ├── SM.suo
│ │ │ ├── 成绩单
│ │ │ │ └── 成绩单.xls
│ │ │ ├── 章程
│ │ │ │ └── 章程.doc
│ │ │ └── 裁判任务
│ │ │ └── 裁判任务.xls
│ │ ├── SM.sln
│ │ └── SM.suo
│ └── 课程设计报告.doc
├── 田径运动会数据库关系表设计清单.xls
└── 说明.TXT
18 directories, 133 files
评论